home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / clarion / cw15 / examp15.z / PROPERTY.FAQ < prev    next >
Text File  |  1995-09-07  |  1KB  |  42 lines

  1. HOW TO ASSIGN AN IMAGE FROM A MEMO OR BLOB FIELD TO AN IMAGE CONTROL:
  2.  
  3. First, the image needs to be assigned to an Image Control, either by naming
  4. the disk file of the image in Properties of the Image Control or by assigning
  5. the name via Property Syntax, as in:
  6.  
  7.                ?Image1{PROP:Text} = ImageFile
  8.  
  9. Next, assign the image to a Binary MEMO, as in:
  10.  
  11.                CON:TheMemo = ?Image1{PROP:ImageBits}
  12.  
  13. or assign it to a Binary BLOB, as in:
  14.  
  15.                CON:TheBlob{PROP:Handle} = ?Image1{PROP:ImageBlob}
  16.  
  17. Finally, the assignment of the BLOB or MEMO image back to an Image Control
  18. requires one of two situations:
  19.     1. The Width and Height of the Image Control are both Default as seen
  20.        in Position of the Control, or
  21.     2. After the Image has been assigned via Property Syntax, a fixed Width
  22.        and Height are also assigned to the Image Control, as in:
  23.  
  24.                ?Image2{PROP:ImageBits} = CON:TheMemo
  25.                ?Image2{PROP:Width} = 92
  26.                ?Image2{PROP:Height} = 88
  27.  
  28.                          OR
  29.  
  30.                ?Image2{PROP:ImageBlob} = CON:TheBlob{PROP:Handle}
  31.                ?Image2{PROP:Width} = 92
  32.                ?Image2{PROP:Height} = 88
  33.  
  34.  
  35. If neither of the above conditions (1 or 2) above are met, the image will
  36. not display.
  37.  
  38.  
  39.                                   JS
  40.  
  41.  
  42.